home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
msdos
/
animutil
/
fastgfx
/
fg303d
/
exbas.arj
/
FGDOC
/
EXAMPLES
/
BASIC
/
07-03.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1993-09-30
|
286 b
|
26 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
OldMode = FGgetmode
FGsetmode 3
FGcursor 0
FGsetattr 7, 0, 0
FGtext "hello", 5
FGwaitkey
FGlocate 0, 0
FGsetattr 0, 7, 0
FGchgattr 5
FGwaitkey
FGlocate 0, 0
FGchgtext "H", 1
FGwaitkey
FGsetmode OldMode
FGreset
END